readme and new test gems

jamesperet 9 years ago
parent
commit
62fbf29d3b
3 changed files with 63 additions and 0 deletions
  1. 8 0
      Gemfile
  2. 54 0
      Gemfile.lock
  3. 1 0
      readme.md

+ 8 - 0
Gemfile

@@ -54,6 +54,14 @@ gem "carrierwave"
54 54
 gem 'i18n'
55 55
 gem 'rails_12factor', group: :production
56 56
 
57
+group :test do
58
+  gem "rspec"
59
+  gem "rspec-rails"
60
+  gem "webrat"
61
+  gem 'cucumber-rails'
62
+  gem 'database_cleaner'
63
+end
64
+
57 65
 # Use ActiveModel has_secure_password
58 66
 # gem 'bcrypt', '~> 3.1.7'
59 67
 

+ 54 - 0
Gemfile.lock

@@ -33,6 +33,12 @@ GEM
33 33
       railties (>= 3.0)
34 34
     bootstrap_form (2.2.0)
35 35
     builder (3.1.4)
36
+    capybara (2.4.4)
37
+      mime-types (>= 1.16)
38
+      nokogiri (>= 1.3.3)
39
+      rack (>= 1.0.0)
40
+      rack-test (>= 0.5.4)
41
+      xpath (~> 2.0)
36 42
     carrierwave (0.10.0)
37 43
       activemodel (>= 3.2.0)
38 44
       activesupport (>= 3.2.0)
@@ -46,12 +52,26 @@ GEM
46 52
       execjs
47 53
     coffee-script-source (1.8.0)
48 54
     commonjs (0.2.7)
55
+    cucumber (1.3.17)
56
+      builder (>= 2.1.2)
57
+      diff-lcs (>= 1.1.3)
58
+      gherkin (~> 2.12)
59
+      multi_json (>= 1.7.5, < 2.0)
60
+      multi_test (>= 0.1.1)
61
+    cucumber-rails (1.4.2)
62
+      capybara (>= 1.1.2, < 3)
63
+      cucumber (>= 1.3.8, < 2)
64
+      mime-types (>= 1.16, < 3)
65
+      nokogiri (~> 1.5)
66
+      rails (>= 3, < 5)
67
+    database_cleaner (1.3.0)
49 68
     devise (3.2.4)
50 69
       bcrypt (~> 3.0)
51 70
       orm_adapter (~> 0.1)
52 71
       railties (>= 3.2.6, < 5)
53 72
       thread_safe (~> 0.1)
54 73
       warden (~> 1.2.3)
74
+    diff-lcs (1.2.5)
55 75
     erubis (2.7.0)
56 76
     excon (0.39.5)
57 77
     execjs (2.2.1)
@@ -87,6 +107,8 @@ GEM
87 107
     formatador (0.2.5)
88 108
     friendly_id (5.0.4)
89 109
       activerecord (>= 4.0.0)
110
+    gherkin (2.12.2)
111
+      multi_json (~> 1.3)
90 112
     hike (1.2.3)
91 113
     i18n (0.6.11)
92 114
     inflecto (0.0.2)
@@ -118,6 +140,7 @@ GEM
118 140
     mini_portile (0.6.0)
119 141
     minitest (4.7.5)
120 142
     multi_json (1.10.1)
143
+    multi_test (0.1.1)
121 144
     net-scp (1.2.1)
122 145
       net-ssh (>= 2.6.5)
123 146
     net-ssh (2.9.1)
@@ -152,6 +175,26 @@ GEM
152 175
       json (~> 1.4)
153 176
     redcarpet (3.1.2)
154 177
     ref (1.0.5)
178
+    rspec (3.1.0)
179
+      rspec-core (~> 3.1.0)
180
+      rspec-expectations (~> 3.1.0)
181
+      rspec-mocks (~> 3.1.0)
182
+    rspec-core (3.1.7)
183
+      rspec-support (~> 3.1.0)
184
+    rspec-expectations (3.1.2)
185
+      diff-lcs (>= 1.2.0, < 2.0)
186
+      rspec-support (~> 3.1.0)
187
+    rspec-mocks (3.1.3)
188
+      rspec-support (~> 3.1.0)
189
+    rspec-rails (3.1.0)
190
+      actionpack (>= 3.0)
191
+      activesupport (>= 3.0)
192
+      railties (>= 3.0)
193
+      rspec-core (~> 3.1.0)
194
+      rspec-expectations (~> 3.1.0)
195
+      rspec-mocks (~> 3.1.0)
196
+      rspec-support (~> 3.1.0)
197
+    rspec-support (3.1.2)
155 198
     sass (3.2.19)
156 199
     sass-rails (4.0.3)
157 200
       railties (>= 4.0.0, < 5.0)
@@ -200,6 +243,12 @@ GEM
200 243
       json (>= 1.8.0)
201 244
     warden (1.2.3)
202 245
       rack (>= 1.0)
246
+    webrat (0.7.3)
247
+      nokogiri (>= 1.2.0)
248
+      rack (>= 1.0)
249
+      rack-test (>= 0.5.3)
250
+    xpath (2.0.0)
251
+      nokogiri (~> 1.3)
203 252
 
204 253
 PLATFORMS
205 254
   ruby
@@ -210,6 +259,8 @@ DEPENDENCIES
210 259
   bootstrap_form
211 260
   carrierwave
212 261
   coffee-rails (~> 4.0.0)
262
+  cucumber-rails
263
+  database_cleaner
213 264
   devise
214 265
   figaro
215 266
   flatstrap-rails
@@ -227,6 +278,8 @@ DEPENDENCIES
227 278
   rails (= 4.0.4)
228 279
   rails_12factor
229 280
   redcarpet
281
+  rspec
282
+  rspec-rails
230 283
   sass-rails
231 284
   sdoc
232 285
   simple_form
@@ -237,3 +290,4 @@ DEPENDENCIES
237 290
   turbolinks
238 291
   twitter-bootstrap-rails
239 292
   uglifier (>= 1.3.0)
293
+  webrat

+ 1 - 0
readme.md

@@ -34,6 +34,7 @@ A template for creating rails websites that includes the following:
34 34
 
35 35
 ## Todo's
36 36
 
37
+- Google Analytics
37 38
 * Log
38 39
 * Tests
39 40
 * Background processing (redis)